home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2000 February / Macworld (2000-02).dmg / Shareware World / Utilities / Business / Ch-Ching 2.6.7r5 / store / cart.lasso next >
Text File  |  1999-08-18  |  984b  |  24 lines

  1.     <!--This format page is used to display a listing of the items in a customer's shopping cart.
  2.     Your customer can also delete, edit and complete the transaction from this screen.
  3.     
  4.     Since a customer may not have not added any items to their cart when they click on
  5.     the cart button, the 'if' tag is used to check if the current found count or
  6.     records in the database is zero.  If there are not items, the 'cartempty.html' file
  7.     is displayed.  Otherwise, the 'cartfull.html' page is displayed.-->
  8.  
  9. [include:'includes/name.lasso']
  10. [include:'includes/nav.lasso']
  11.  
  12. [if:(var:'custNum' == '')]
  13.     [variable_set:'custNum'=(cookie:'custNum')]
  14. [/if]
  15. [inline:database=(var:'dtb'), layout='www_orderedItems', itmOrderID=(var:'custNum'), sortField='itmProductName', search]
  16.     [if:(found_count == '0') || (var:'custNum'=='')]
  17.         [inline:database=(variable:'dtb'), layout='www_categories', show]
  18.             [include:'html/cartempty.html']
  19.         [/inline]
  20.     [else]
  21.         [include:'html/cartfull.html']
  22.     [/if]
  23. [/inline]
  24.